인접 표 토폴로지 정렬 인접 표 토폴로지 정렬 // , , #include<stdio.h> #include<malloc.h> #include<stack> using namespace std; #define MAX_VERTEX_NUM 20 int visited[100]; typedef struct arcnode { int adjvex; struct arcnode *nextarc; int info; }*arcnod,arcnode1; type... 인접 표 토폴로지 정렬
인접 표 토폴로지 정렬 // , , #include<stdio.h> #include<malloc.h> #include<stack> using namespace std; #define MAX_VERTEX_NUM 20 int visited[100]; typedef struct arcnode { int adjvex; struct arcnode *nextarc; int info; }*arcnod,arcnode1; type... 인접 표 토폴로지 정렬